home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Conic Sections 0.9.2 / Include / ScrollTextBox.h < prev   
Encoding:
Text File  |  1997-07-20  |  429 b   |  23 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __SCROLLTEXTBOX_H
  5. #define __SCROLLTEXTBOX_H
  6.  
  7. #include "CLPulsar.h"
  8. #include "CLStyleBox.h"
  9.  
  10. class TScrollStyleBox:
  11.     public TStyleBox,
  12.     public MPulsar
  13. {
  14. protected:
  15.     int mTime, mDelay;
  16. public:
  17.     TScrollStyleBox( TLayoutBranch*, short );
  18.     virtual ~TScrollStyleBox();
  19.     virtual void AttachedToWindow( TBaseWindow*, Rect );
  20.     virtual void Pulse( const TEvent* );
  21. };
  22.  
  23. #endif